From: Glenn Morris Date: Fri, 18 May 2012 07:34:10 +0000 (-0700) Subject: * Makefile.in (install-arch-indep): Minor fix for earlier change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~2917^2~134^2~81 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b7e1feeab6f88af3ebccbde6080e85c3cae8b340;p=emacs.git * Makefile.in (install-arch-indep): Minor fix for earlier change. --- diff --git a/Makefile.in b/Makefile.in index a24e40f1236..3b66db4e8c5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -539,7 +539,8 @@ install-arch-indep: info install-etc install-leim for dir in ${COPYDIR} ; do \ [ -d $${dir} ] || exit 1 ; \ dest=$$1 ; shift ; \ - [ `(cd $${dest} && /bin/pwd)` = `(cd $${dir} && /bin/pwd)` ] && \ + [ -d $${dest} ] && \ + [ `(cd $${dest} && /bin/pwd)` = `(cd $${dir} && /bin/pwd)` ] && \ continue ; \ rm -rf $${dest} ; \ umask 022; ${MKDIR_P} $${dest} ; \